From 150003f8115f8d592f8d7733c67590aee802797a Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Mon, 2 Jul 2018 10:28:24 +0200 Subject: [PATCH] tests: disable x86 emulator test harness when using clang MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit clang is not capable of building the x86 emulator test harness, so disconnect it from the clang build until it can be fixed. Signed-off-by: Roger Pau Monné Acked-by: Wei Liu --- tools/tests/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/tests/Makefile b/tools/tests/Makefile index 26c46b4915..a9fc50d789 100644 --- a/tools/tests/Makefile +++ b/tools/tests/Makefile @@ -10,7 +10,9 @@ SUBDIRS-y += mem-sharing ifeq ($(XEN_TARGET_ARCH),__fixme__) SUBDIRS-y += regression endif +ifneq ($(clang),y) SUBDIRS-$(CONFIG_X86) += x86_emulator +endif SUBDIRS-y += xen-access SUBDIRS-y += xenstore SUBDIRS-y += depriv -- 2.30.2